-
Re: How can I get glyphs' names beyond 0x10000 in FF?
You can print glyphs names with simple python script: n=fontforge.activeFont(); temp=""; for i in n: temp+=i; temp+=" "; print temp; but those glyphs must exist in the font (on im…1 -
Re: How can I get glyphs' names beyond 0x10000 in FF?
No these are default glyph names in my FF to see printout You need to run fontforge in terminal to print names to file You can use simple script: import os; n=fontforge.activeFont(); temp="&quo…1 -
Re: FAIL: 'created' timestamp seems very low; regarding as unix timestamp
I will start by checking created position in head table with ttx from fonttools ttx font.otf and in font.ttx if date would be very old, it can be manually corrected, and font again compiled.1 -
Re: Letterspacing (?) as a variable in my singleline script
first "quick and dirty" prototype of normal Width axis made me sure that it is worth keeping the name for the future - cooperation of these two axes has potential now I like the Span propos…3 -
Re: Letterspacing (?) as a variable in my singleline script
@"Thomas Phinney" thank You@"Matthew Smith" thanks for paying my attention. I will probably want to add such an axis in future and I would have to change axes names :) @"Dave…1